home *** CD-ROM | disk | FTP | other *** search
- ` ------------------------------------------------------------------------
- ` Gradient Fill DarkForge Snippet (6/8/2000)
- ` ------------------------------------------------------------------------
- `
- ` Fills the screen with a smooth gradient fill effect.
- ` Uncomment out the ink values for different colours.
-
- sync rate 0
- sync on
- hide mouse
-
- create bitmap 1,640,240
- set current bitmap 0
-
- repeat
-
- ` dark blue to light blue
- ` ink rgb(50,v,200),0
-
- ` red and green blend
- ink rgb(255-v,v,0),0
-
- ` blue to green blend
- ` ink rgb(v/4,v/2,240-v),0
-
- line 0,v,640,v
- inc v
- sync
-
- until v=240
-
- get image 1,0,0,640,240
- set current bitmap 1
- paste image 1,0,0
- flip bitmap 1
- get image 1,0,0,640,240
- set current bitmap 0
-
- paste image 1,0,240
-
- wait key
- end
-
-